# Links & Infos

# misc

  • multiply is easier for the computer than divide: *0.5 is better than /2

  • avoid nested If-Statements

  • Convention für Boolean: isCondition

  • Convention for Names (From the Google Closure Library Style Guide):

    functionNamesLikeThis;
    variableNamesLikeThis;
    ConstructorNamesLikeThis;
    EnumNamesLikeThis;
    methodNamesLikeThis;
    SYMBOLIC_CONSTANTS_LIKE_THIS;
    

# Places to practice coding